This is the WiiNunchuck library, written by Grant Emsley - http://arduino.emsley.ca, <grant@emsley.ca>
Most of the code was taken from examples on various people's blogs.  I just packed it up as a library and added a few useful functions.

This library works with third party nunchucks, which the other ones don't support.

Installation
--------------------------------------------------------------------------------

To install this library, just place this entire folder as a subfolder in your
Arduino/libraries folder.

When installed, this library should look like:

Arduino/libraries/WiiNunchuck              (this library's folder)
Arduino/libraries/Test/WiiNunchuck.cpp     (the library implementation file)
Arduino/libraries/Test/WiiNunchuck.h       (the library description file)
Arduino/libraries/Test/keywords.txt (the syntax coloring file)
Arduino/libraries/Test/examples     (the examples in the "open" menu)
Arduino/libraries/Test/readme.txt   (this file)

Using The Library
--------------------------------------------------------------------------------

Add this to the top of your sketch:

	#include <WiiNunchuck.h>
	#include <Wire.h>

An object called Nunchuck is created for you.  See the examples for how to use it.